home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-13 | 418 b | 25 lines | [TEXT/EDIT] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class TEST_GENERIC5
- -- From a bug report of Cyril ADRIAN
-
- creation make
-
- feature
-
- make is
- local
- rb: AUX_GENERIC5[REAL];
- sb: AUX_GENERIC5[STRING]
- do
- !!sb.make ("Hello World");
- !!rb.make (Pi.to_real);
- rb.bizarre;
- sb.bizarre;
- end;
-
- end -- TEST_GENERIC5
-
-
-